Caption = "A demo from Steven Gotz. I did not write this code. I used code lifted from a PC Magazine Utility. Please feel free to distribute this to anyone you please. It is OK, I promise."
FontBold = -1 'True
FontItalic = 0 'False
FontName = "MS Sans Serif"
FontSize = 12
FontStrikethru = 0 'False
FontUnderline = 0 'False
ForeColor = &H00800000&
Height = 1350
Left = 0
TabIndex = 0
Top = 180
Width = 5790
End
Begin Menu mnuFile
Caption = "&File"
Begin Menu mnuExit
Caption = "E&xit"
End
End
Begin Menu mnuHelp
Caption = "&Help"
Begin Menu mnuAbout
Caption = "&About"
End
End
Sub Form_Load ()
mnuHelp.Caption = Chr$(8) + mnuHelp.Caption
End Sub
Sub mnuAbout_Click ()
'The Icon will be taken from the application.
'This is really quite easy to use.
'I use this very program as a starter for almost
'all of my apps now. Modify the DisplayAboutBox line
'and change the MyInfoLabel label caption and
'the label1 caption and you should be in business.
' Aplication, ver, year company verbose appname date
DisplayAboutBox form1, "The About Box Demo", 1.01, "1995", "Software Novices, Inc", "A demo of how to implement this About Box", "Mar 3, 1995", 0, True, 0, &HC0C0C0